home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / cmds / sync / sync.c < prev    next >
Encoding:
C/C++ Source or Header  |  1989-03-26  |  645 b   |  36 lines

  1. /* 
  2.  * sync.c --
  3.  *
  4.  *    Write the file system's cache to disk.
  5.  *
  6.  * Copyright (C) 1988 Regents of the University of California
  7.  * All rights reserved.
  8.  */
  9.  
  10. #ifndef lint
  11. static char rcsid[] = "$Header: /a/newcmds/sync/RCS/sync.c,v 1.1 88/08/16 11:04:28 nelson Exp Locker: mgbaker $ SPRITE (Berkeley)";
  12. #endif not lint
  13.  
  14. #include "sys.h"
  15.  
  16.  
  17. /*
  18.  *----------------------------------------------------------------------
  19.  *
  20.  * main --
  21.  *
  22.  *    The main program for sync.
  23.  *
  24.  * Results:
  25.  *    None.
  26.  *
  27.  * Side effects:
  28.  *    None.
  29.  *
  30.  *----------------------------------------------------------------------
  31.  */
  32. main()
  33. {
  34.     Sys_Shutdown(SYS_WRITE_BACK, NULL);
  35. }
  36.